summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/hardware_opus_decoder.cpp
blob: e398511a6ea6190901ec0bbfb9296f7f166daf37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/audio/hardware_opus_decoder.h"
#include "core/hle/service/ipc_helpers.h"

namespace Service::Audio {

using namespace AudioCore::OpusDecoder;

IHardwareOpusDecoder::IHardwareOpusDecoder(Core::System& system_, HardwareOpus& hardware_opus)
    : ServiceFramework{system_, "IHardwareOpusDecoder"},
      impl{std::make_unique<AudioCore::OpusDecoder::OpusDecoder>(system_, hardware_opus)} {
    // clang-format off
    static const FunctionInfo functions[] = {
        {0, &IHardwareOpusDecoder::DecodeInterleavedOld, "DecodeInterleavedOld"},
        {1, &IHardwareOpusDecoder::SetContext, "SetContext"},
        {2, &IHardwareOpusDecoder::DecodeInterleavedForMultiStreamOld, "DecodeInterleavedForMultiStreamOld"},
        {3, &IHardwareOpusDecoder::SetContextForMultiStream, "SetContextForMultiStream"},
        {4, &IHardwareOpusDecoder::DecodeInterleavedWithPerfOld, "DecodeInterleavedWithPerfOld"},
        {5, &IHardwareOpusDecoder::DecodeInterleavedForMultiStreamWithPerfOld, "DecodeInterleavedForMultiStreamWithPerfOld"},
        {6, &IHardwareOpusDecoder::DecodeInterleavedWithPerfAndResetOld, "DecodeInterleavedWithPerfAndResetOld"},
        {7, &IHardwareOpusDecoder::DecodeInterleavedForMultiStreamWithPerfAndResetOld, "DecodeInterleavedForMultiStreamWithPerfAndResetOld"},
        {8, &IHardwareOpusDecoder::DecodeInterleaved, "DecodeInterleaved"},
        {9, &IHardwareOpusDecoder::DecodeInterleavedForMultiStream, "DecodeInterleavedForMultiStream"},
    };
    // clang-format on

    RegisterHandlers(functions);
}

IHardwareOpusDecoder::~IHardwareOpusDecoder() = default;

Result IHardwareOpusDecoder::Initialize(const OpusParametersEx& params,
                                        Kernel::KTransferMemory* transfer_memory,
                                        u64 transfer_memory_size) {
    return impl->Initialize(params, transfer_memory, transfer_memory_size);
}

Result IHardwareOpusDecoder::Initialize(const OpusMultiStreamParametersEx& params,
                                        Kernel::KTransferMemory* transfer_memory,
                                        u64 transfer_memory_size) {
    return impl->Initialize(params, transfer_memory, transfer_memory_size);
}

void IHardwareOpusDecoder::DecodeInterleavedOld(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    auto result =
        impl->DecodeInterleaved(&size, nullptr, &sample_count, input_data, output_data, false);

    LOG_DEBUG(Service_Audio, "bytes read 0x{:X} samples generated {}", size, sample_count);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 4};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
}

void IHardwareOpusDecoder::SetContext(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    LOG_DEBUG(Service_Audio, "called");

    auto input_data{ctx.ReadBuffer(0)};
    auto result = impl->SetContext(input_data);

    IPC::ResponseBuilder rb{ctx, 2};
    rb.Push(result);
}

void IHardwareOpusDecoder::DecodeInterleavedForMultiStreamOld(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    auto result = impl->DecodeInterleavedForMultiStream(&size, nullptr, &sample_count, input_data,
                                                        output_data, false);

    LOG_DEBUG(Service_Audio, "bytes read 0x{:X} samples generated {}", size, sample_count);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 4};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
}

void IHardwareOpusDecoder::SetContextForMultiStream(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    LOG_DEBUG(Service_Audio, "called");

    auto input_data{ctx.ReadBuffer(0)};
    auto result = impl->SetContext(input_data);

    IPC::ResponseBuilder rb{ctx, 2};
    rb.Push(result);
}

void IHardwareOpusDecoder::DecodeInterleavedWithPerfOld(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result =
        impl->DecodeInterleaved(&size, &time_taken, &sample_count, input_data, output_data, false);

    LOG_DEBUG(Service_Audio, "bytes read 0x{:X} samples generated {} time taken {}", size,
              sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

void IHardwareOpusDecoder::DecodeInterleavedForMultiStreamWithPerfOld(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result = impl->DecodeInterleavedForMultiStream(&size, &time_taken, &sample_count,
                                                        input_data, output_data, false);

    LOG_DEBUG(Service_Audio, "bytes read 0x{:X} samples generated {} time taken {}", size,
              sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

void IHardwareOpusDecoder::DecodeInterleavedWithPerfAndResetOld(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto reset{rp.Pop<bool>()};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result =
        impl->DecodeInterleaved(&size, &time_taken, &sample_count, input_data, output_data, reset);

    LOG_DEBUG(Service_Audio, "reset {} bytes read 0x{:X} samples generated {} time taken {}", reset,
              size, sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

void IHardwareOpusDecoder::DecodeInterleavedForMultiStreamWithPerfAndResetOld(
    HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto reset{rp.Pop<bool>()};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result = impl->DecodeInterleavedForMultiStream(&size, &time_taken, &sample_count,
                                                        input_data, output_data, reset);

    LOG_DEBUG(Service_Audio, "reset {} bytes read 0x{:X} samples generated {} time taken {}", reset,
              size, sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

void IHardwareOpusDecoder::DecodeInterleaved(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto reset{rp.Pop<bool>()};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result =
        impl->DecodeInterleaved(&size, &time_taken, &sample_count, input_data, output_data, reset);

    LOG_DEBUG(Service_Audio, "reset {} bytes read 0x{:X} samples generated {} time taken {}", reset,
              size, sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

void IHardwareOpusDecoder::DecodeInterleavedForMultiStream(HLERequestContext& ctx) {
    IPC::RequestParser rp{ctx};

    auto reset{rp.Pop<bool>()};

    auto input_data{ctx.ReadBuffer(0)};
    output_data.resize_destructive(ctx.GetWriteBufferSize());

    u32 size{};
    u32 sample_count{};
    u64 time_taken{};
    auto result = impl->DecodeInterleavedForMultiStream(&size, &time_taken, &sample_count,
                                                        input_data, output_data, reset);

    LOG_DEBUG(Service_Audio, "reset {} bytes read 0x{:X} samples generated {} time taken {}", reset,
              size, sample_count, time_taken);

    ctx.WriteBuffer(output_data);

    IPC::ResponseBuilder rb{ctx, 6};
    rb.Push(result);
    rb.Push(size);
    rb.Push(sample_count);
    rb.Push(time_taken);
}

} // namespace Service::Audio